.coupon__wrapper {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #4e4e4e66;
}

.coupon_take_container {
    top: 22vh;
    left: calc(50% - 250px);
    background: #E65154;
    box-shadow: 0 2px 50px 4px rgba(54, 52, 52, 0.46);
    border-radius: 8px;
    width: 500px;
    position: absolute;
}

.coupon_take_list {
    scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* IE 10+ */
    overflow-x: hidden;
    overflow-y: auto;
    height: 300px;
}

.coupon_take_list::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}

.coupon_after_money {
    font-size: 17px;
    background: #E65154;
    color: #fff;
    padding: 4px 13px;
    vertical-align: middle;
}


.coupon_close {
    font-size: 20px;
    color: #fff;
    position: relative;
    top: 10px;
    right: 20px;
    float: right;
    cursor: pointer;
}

.coupon_close:hover {
    color: #fbd44c;
}

.coupon_title {
    padding: 19px 0;
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0;
}

.coupon_item {
    background: #FF8A3D;
    border-radius: 8px;
    display: flex;
    margin: 8px 20px;
    height: 90px;
    padding: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.coupon_item .price {
    flex-shrink: 1;
}

.coupon_item .price, .coupon_item .operation {
    padding: 10px;
}

.coupon_item .price span:nth-child(1) {
    vertical-align: middle;
    font-size: 21px;
    color: #FFFFFF;
    letter-spacing: 0;
}

.coupon_item .price span:nth-child(2) {
    vertical-align: middle;
    font-size: 32px;
    color: #FFFFFF;
    letter-spacing: 0;
}

.coupon_item .desc .desc_title {
    font-size: 21px;
    color: #FFFFFF;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 5px;
}

.coupon_item .desc .info {
    font-size: 9px;
    color: #FCE6D7;
    letter-spacing: 0;
}


.coupon_item .take_circle {
    border-radius: 50%;
    background: #FFD44D;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 29px;
    color: #FF8A3D;
    letter-spacing: 0;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
}

.coupon_item .take_circle:hover {
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.coupon_take_all {
    width: 120px;
    margin: auto;
    padding: 10px 55px;
    background: #FFD44D;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    font-size: 14px;
    color: #FF8A3D;
    letter-spacing: 0;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
}

.coupon_take_all:hover {
    box-shadow: 0 2px 4px 4px rgba(0, 0, 0, 0.3);
}

.coupon_take_btn {
    position: fixed;
    bottom: 20px;
    right: 0px;
    background: #E65154;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 0;
    padding: 12px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    z-index: 10;
}

.coupon_take_btn:hover {
    background: #bb4345;
}

.coupon_choose_box {
    display: flex;
    background: rgb(253 252 240);
    justify-content: space-around;
    padding: 15px 10px;
    border-radius: 10px;
    flex-wrap: wrap;
}

.coupon_choose_item {
    background: #e65154;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.coupon_choose_item_select {
    background: #e6a23c
}

@media only screen and (max-width: 767px) {
    .coupon_take_container {
        top: 22vh;
        left: calc(50% - 44%);
        background: #E65154;
        box-shadow: 0 2px 50px 4px rgba(54, 52, 52, 0.46);
        border-radius: 8px;
        width: 88%;
        position: absolute;
        font-size: 10px;
    }

    .coupon_after_money {
        display: block;
        font-size: 17px;
        background: rgb(230, 81, 84);
        color: rgb(255, 255, 255);
        padding: 6px 20px;
        vertical-align: middle;
        text-align: center;
    }

    .coupon_item {
        margin: 8px 0;
    }

    .coupon_item .price, .coupon_item .operation {
        padding: 5px;
    }

    .coupon_item .price span:nth-child(1) {
        font-size: 15px;
        display: block;
    }

    .coupon_item .price span:nth-child(2) {
        font-size: 17px;
    }

    .coupon_item .desc .desc_title {
        font-size: 15px;
    }

    .coupon_take_list {
        padding: 10px;
    }
}
